- Prelude
- flip <A, B, R> (Func<A, Func<B, R>> f)
- flip <A, B, C, R> (Func<A, Func<B, Func<C, R>>> f)
- flip <A, B, R> (Func<A, B, R> f)
- flip <A, B, C, R> (Func<A, B, C, R> f)
- Flip <A, B, R> (this Func<A, Func<B, R>> f)
- Flip <A, B, C, R> (this Func<A, Func<B, Func<C, R>>> f)
- Flip <A, B, R> (this Func<A, B, R> f)
- Flip <A, B, C, R> (this Func<A, B, C, R> f)
method Func<B, Func<A, R>> flip <A, B, R> (Func<A, Func<B, R>> f) Source #
Reverse the order of the arguments to a curried function
method Func<C, Func<B, Func<A, R>>> flip <A, B, C, R> (Func<A, Func<B, Func<C, R>>> f) Source #
Reverse the order of the arguments to a curried function
method Func<B, A, R> flip <A, B, R> (Func<A, B, R> f) Source #
Reverse the order of the arguments to a function
method Func<C, B, A, R> flip <A, B, C, R> (Func<A, B, C, R> f) Source #
Reverse the order of the arguments to a function
method Func<B, Func<A, R>> Flip <A, B, R> (this Func<A, Func<B, R>> f) Source #
Reverse the order of the arguments to a curried function
method Func<C, Func<B, Func<A, R>>> Flip <A, B, C, R> (this Func<A, Func<B, Func<C, R>>> f) Source #
Reverse the order of the arguments to a curried function